home *** CD-ROM | disk | FTP | other *** search
/ The Adventures of... Mikki Finn (2-Disc Set) / The Adventures of Mikki Finn (2 Disc Set) - Disc 2.iso / pc / install.dat < prev    next >
Encoding:
INSTALL Professional project  |  1994-06-15  |  9.2 KB  |  306 lines

  1. /*
  2.  INSTALL.DAT
  3.  
  4.  Project: Mikki Finn
  5.  Version: 1.0
  6.  
  7. */
  8.  
  9. /*  The @DefineProject block starts the installation script by telling
  10.     Install what version, product, and other basic information that
  11.     Install will need to process the installation.  The text that
  12.     @Name is set to is the same information that can be found on the
  13.     first line of the DISK.ID file.  Likewise the text that @Version
  14.     is set to, is the same information that can be found on the second
  15.     line of the DISK.ID file.  This information remains constant
  16.     throughout the entire distribution set.  @Subdir and @OutDrive are
  17.     used to define the default drive and directory for the target system
  18.     during the installation process.  
  19. */
  20.     
  21. @DefineProject
  22.     @Name = "Mikki Finn"
  23.     @Version = "1.0"
  24.     @Subdir = "\\QTW"
  25.     @OutDrive = C
  26.     
  27. @EndProject
  28.  
  29. /*  The following @DefineVars block is used to assign variables to
  30.     specific types (Integer, QString, Drive, & Dir) as well as establishing
  31.     default values for the variables.  Later in this script file these 
  32.     variables are assigned values depending whether    particular files will be 
  33.     installed or not.
  34. */
  35.  
  36. @DefineVars
  37.     @Integer @amid       = 600
  38.     @Integer @qtw       = 1500
  39.     @Integer @TSIZE      = @Eval(@amid+@qtw)
  40.     @Integer @Red        = @RGB(255,0,0)             //DEFINE COLOR RED
  41.     @Integer @Green      = @RGB(0,255,0)             //DEFINE COLOR GREEN
  42.     @Integer @Blue       = @RGB(0,0,255)             //DEFINE COLOR BLUE
  43.     @Integer @Black      = @RGB(0,0,0)               //DEFINE COLOR BLACK
  44.     @QString @MovieDrive = "@StartupDrive" 
  45. @EndVars
  46.  
  47. @BackgroundMode(3,@Blue,@Black)
  48.  
  49. /* 
  50.     The following section displays the welcoming message during installation.
  51.  
  52. */
  53.  
  54.  
  55. @Display
  56.                 
  57.  
  58. This program installs the Mikki Finn movie player on your hard drive.  
  59. To continue, choose "OK".  To quit choose "Cancel".  
  60.  
  61.  
  62. @Pause
  63. @Enddisplay
  64.  
  65. @SetOption(1001)  
  66. @SetOption(1002)
  67.  
  68. LOOP:
  69. @BackgroundMode(3,@Blue,@Black) //set background to blue/black
  70.  
  71.  
  72. @DlgCtrlSize(0,7,5,14,50)  // set coordinates & size of list box
  73. @GetOption @Checkbox @Prompt = "Select files to install"
  74.  @Name by default will install the program files and Quicktime for
  75. Windows to a selected target directory.
  76. The total installation takes approximately 2.1 Mb of disk space.
  77.  
  78. @Option 1001 = "Mikki Finn             "
  79. @Option 1002 = "Quicktime for Windows  "
  80.  
  81. @EndOption
  82.  
  83. @if(1002 [= @option)
  84. NEWDRIVE:  // Goto label for reselecting drive
  85. /*
  86.     INSTALL will now prompt the end-user for the
  87.     drive they wish Mikki Finn to be installed onto.
  88. */
  89. @BackgroundMode(3,@Blue,@Black)
  90.  
  91. @DlgCtrlSize(0,8,15,15,27)
  92. @GetOutDrive @OutDrive @Prompt = "Enter target drive"
  93. @Suppress(0,17) // Suppress floppies & CD-ROM drives
  94. Please select the drive where you wish QuickTime 
  95. for Windows to be installed on your machine.  Any 
  96. available drive can be used assuming you have
  97. access rights to the drive you select, and
  98. there is enough space available for installation.
  99. @EndOutDrive
  100.  
  101. /*
  102.     INSTALL will now prompt the end-user for the
  103.     directory they wish Quicktime to be installed
  104.     into.
  105. */
  106.  
  107. NEWDIR:
  108. @BackgroundMode(3,@Blue,@Black)
  109.  
  110. @DlgCtrlSize(0,7,0,8,35)
  111. @GetSubdir @Subdir @Prompt = "Enter target directory"
  112. Please select the directory
  113. you wish Quicktime to be installed under.
  114. @EndSubdir
  115.  
  116. @ElseIf(1001 [= @option)
  117.  
  118. NEWDRIVE:  // Goto label for reselecting drive
  119. /*
  120.     INSTALL will now prompt the end-user for the
  121.     drive they wish Mikki Finn to be installed onto.
  122. */
  123. @BackgroundMode(3,@Blue,@Black)
  124.  
  125. @DlgCtrlSize(0,8,15,15,27)
  126. @GetOutDrive @OutDrive @Prompt = "Enter target drive"
  127. @Suppress(0,17) // Suppress floppies & CD-ROM drives
  128. Please select the drive where you wish Mikki Finn 
  129. to be installed on your machine.  Any 
  130. available drive can be used assuming you have
  131. access rights to the drive you select, and
  132. there is enough space available for installation.
  133. @EndOutDrive
  134.  
  135. /*
  136.     INSTALL will now prompt the end-user for the
  137.     directory they wish Quicktime to be installed
  138.     into.
  139. */
  140.  
  141. NEWDIR:
  142. @BackgroundMode(3,@Blue,@Black)
  143.  
  144. @DlgCtrlSize(0,7,0,8,35)
  145. @GetSubdir @Subdir @Prompt = "Enter target directory"
  146. Please select the directory you wish Mikki Finn to be 
  147. installed under.
  148.  
  149. NOTE-Quicktime must be installed on your system and be
  150. included in your path statement for Mikki Finn to run.
  151. @EndSubdir 
  152. @EndIf
  153.  
  154.  
  155.  
  156.  
  157. @if(1001 [! @option) @amid=0 @Else @amid = 600 @EndIf //if group not selected zero out
  158. @if(1002 [! @option) @qtw=0 @Else @qtw = 1500  @EndIf //if group not selected zero out
  159.  
  160.  
  161. @TSIZE = @Eval((@amid+@qtw))   // add selected options' size requirements
  162.  
  163. // if total size > free space, then display
  164. // blue background and set default to loop back and select again.
  165. @If(@TSIZE*1024 > @DiskFree(@OutDrive))
  166.     @BackgroundMode(3,@Blue,@Black)
  167.     @Display
  168.         The drive you have selected does not have
  169.         enough free space available.
  170.         
  171.     @Pause
  172.     @EndDisplay
  173.     @GOTO NEWDRIVE
  174. @EndIf    
  175.  
  176. @BackgroundMode(3,@Blue,@Black)
  177. @SetOption(1600) @ClearOption(1700)
  178.  
  179.  
  180. @DlgCtrlSize(0,13,12,17,40)
  181. @GetOption @Prompt = "Selected files summary"
  182. You have selected to install the following options.
  183.                @if(1001 [= @option) Mikki Finn              @amid K @Else Screen Candy           WILL NOT BE INSTALLED @EndIf
  184.                @if(1002 [= @option) Quicktime for Windows   @qtw K @Else Quicktime for Windows  WILL NOT BE INSTALLED @EndIf
  185.           
  186.                The selected files will require a total of:        @TSIZE K bytes.
  187.                The drive currently selected for installation has: @Eval(@DiskFree(@OutDrive)/1K) K free.
  188.  
  189.  
  190.  You may:
  191. @Option 1600 = "CONTINUE"
  192. @Option 1700 = "RESELECT OPTIONS"
  193. @EndOption
  194.  
  195.  
  196. @If(1700 [= @Option) @GOTO Loop @EndIf
  197.  
  198. @If(1001 [= @Option)
  199.     @SetINI("Movie Player.Mikki Finn", "SourceDrive", @MovieDrive ,"starware.ini")
  200.     
  201. @EndIf
  202. /*
  203.       The @DefineDisk blocks actually do the copying of the files, from the 
  204.       floppy disk to the hard disk of the end-users particular choice.
  205. */
  206.  
  207. @DefineDisk
  208.     @Label = "Mikki Finn"
  209.  
  210. /*
  211.     The following files are not in a library and are always installed.
  212. */
  213. /*        @File  README.WRI   @OUT *.*            */
  214.  
  215.     @If(1001 [= @Option)    // if install source selected, install
  216.         
  217.         @File pc\MIKKI.EXE     @OUT *.*
  218.         @File pc\VBRUN300.DLL     @OUT @WindowsDrive:@WindowsDir\\system\*.* @ASKOVERWRITE
  219.         @File pc\THREED.VBX     @OUT @WindowsDrive:@WindowsDir\\system\*.* @ASKOVERWRITE
  220.         @File pc\README.WRI     @OUT *.*
  221.     @EndIf // Option 1001
  222.  
  223.     @If(1002 [= @Option)   // if install source selected, install
  224.  
  225.         @File pc\qtmovie.vbx    @OUT @WindowsDrive:@WindowsDir\\system\*.* @ASKOVERWRITE
  226.         @File pc\qtpic.vbx    @OUT @WindowsDrive:@WindowsDir\\system\*.* @ASKOVERWRITE
  227.         @File pc\mciqtenu.dll    @out BIN\*.* @OVERWRITE
  228.         @File pc\playenu.dll     @OUT BIN\*.* @OVERWRITE
  229.         @File pc\qthndlr.dll    @OUT BIN\*.* @OVERWRITE
  230.         @File pc\qtim.dll    @OUT BIN\*.* @OVERWRITE
  231.         @File pc\qtimcmgr.dll    @OUT BIN\*.* @OVERWRITE
  232.         @File pc\qtole.dll    @OUT BIN\*.* @OVERWRITE
  233.         @File pc\qtvhdw.dll    @OUT BIN\*.* @OVERWRITE
  234.         @File pc\viewenu.dll    @OUT BIN\*.* @OVERWRITE
  235.         @File pc\mciqtw.drv    @OUT BIN\*.* @OVERWRITE
  236.         @File pc\player.exe    @OUT BIN\*.* @OVERWRITE
  237.         @File pc\qtnotify.exe    @OUT BIN\*.* @OVERWRITE
  238.         @File pc\viewer.exe    @OUT BIN\*.* @OVERWRITE
  239.         @File pc\navg.qtc    @OUT BIN\*.* @OVERWRITE
  240.         @File pc\qcmc.qtc    @OUT BIN\*.* @OVERWRITE
  241.         @File pc\qtcvid.qtc    @OUT BIN\*.* @OVERWRITE
  242.         @File pc\qtjpeg.qtc    @OUT BIN\*.* @OVERWRITE
  243.         @File pc\qtmsvc.qtc    @OUT BIN\*.* @OVERWRITE
  244.         @File pc\qtraw.qtc    @OUT BIN\*.* @OVERWRITE
  245.         @File pc\qtrle.qtc    @OUT BIN\*.* @OVERWRITE
  246.         @File pc\qtrpza.qtc    @OUT BIN\*.* @OVERWRITE
  247.         @File pc\qtrt21.qtc    @OUT BIN\*.* @OVERWRITE
  248.         @File pc\qtsmc.qtc    @OUT BIN\*.* @OVERWRITE
  249.         @File pc\qtyvu9.qtc    @OUT BIN\*.* @OVERWRITE
  250.  
  251.     
  252.     @EndIf    // Option 1002
  253. @EndDisk
  254.  
  255.  
  256. /*
  257.  *    The following lines will be placed into any pre-existing AUTOEXEC.BAT
  258.  *    file on the boot disk in the boot drive.  If no AUTOEXEC.BAT file 
  259.  *    already exists, then one will be created.
  260.  *
  261.  *    Each of the two AUTOEXEC.BAT related commands, @Path and @Verbatim,
  262.  *    is aware of the structure of an AUTOEXEC.BAT file.
  263.  *
  264.  *    The @Path command examines each node of any existing PATH= commands
  265.  *    (or its synonym SET PATH=) and places each of the nodes specified
  266.  *    in the @Path command of the INSTALL.DAT file only if the node
  267.  *    does not already exist on the PATH= search list of the AUTOEXEC.BAT
  268.  *    file.
  269.  *
  270.  *    The @Verbatim command instructs INSTALL to place the quoted string
  271.  *    into the AUTOEXEC.BAT file, if the string is not already there.
  272.  */
  273. @if(1002 [! @option) @qtw=0 @Else @qtw = 1500  
  274.  
  275.     @SetAutoexec
  276.         @ASKOverwrite
  277.         @Path = "@OutDrive:@Subdir\\BIN"
  278.         
  279.     @EndAutoexec
  280. @EndIf //if group not selected zero out
  281.  
  282. @Finish
  283. @If(@BackgroundMode(3,@Blue,@Black))@EndIf
  284. @Cls
  285. /*
  286.     The following command is used to create the INSTALL group and
  287.     add the INSTALL item to the Windows Program Manager.
  288. */
  289.  
  290. @ProgramManager("[CreateGroup(Starware)][AddItem(@OutDrive:@Subdir\\Readme.wri, Mikki:Readme)][AddItem(@OutDrive:@Subdir\\Mikki.exe, Mikki Finn)][ShowGroup(Starware, 2)]")
  291.  
  292.  
  293. @Cls
  294.  
  295. @Name is finished installing.  Thank you for your purchase.
  296.  
  297.  
  298. @Pause
  299. @If(@BackgroundMode(3,@Blue,@Black))@EndIf
  300.  
  301. @ChDrive (@OutDrive)
  302. @ChDir ("@SubDir")
  303. @EndFinish
  304.  
  305. // end-of-file
  306.